Tables [dbo].[NavigationSecurityRolesExport]
Properties
PropertyValue
Created10:31:29 AM Tuesday, March 02, 2010
Last Modified11:40:04 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_NavigationSecurityRolesExport: NavigationKey\RoleKeyNavigationKeyuniqueidentifier16
No
Cluster Primary Key PK_NavigationSecurityRolesExport: NavigationKey\RoleKeyRoleKeyuniqueidentifier16
No
RoleNamenvarchar(50)100
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_NavigationSecurityRolesExport: NavigationKey\RoleKeyPK_NavigationSecurityRolesExportNavigationKey, RoleKey
Yes
SQL Script
CREATE TABLE [dbo].[NavigationSecurityRolesExport]
(
[NavigationKey] [uniqueidentifier] NOT NULL,
[RoleKey] [uniqueidentifier] NOT NULL,
[RoleName] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[NavigationSecurityRolesExport] ADD CONSTRAINT [PK_NavigationSecurityRolesExport] PRIMARY KEY CLUSTERED ([NavigationKey], [RoleKey]) ON [PRIMARY]
GO
Uses